@charset "utf-8";
/* CSS Document */

.menu {width:960px; height:42px; position:relative;top:0px; z-index:100;border-right:1px solid #4C6E9E; font-family:arial, sans-serif; margin:auto;}
/* hack to correct IE5.5 faulty box model */

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:120px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:120px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:14px;
	text-decoration:none;
	color:#fff;
	width:119px;
	height:40px;
	border:1px solid #4C6E9E;
	border-width:1px 0 1px 1px;
	background:url(../image/menu/menubg1.png) repeat-x;
	padding-left:0px;
	line-height:40px;
	font-weight:bold;
	text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#FBFBFB url(../image/menu/grey-arrow.gif) no-repeat 110px center;
	font-size:12px;
	font-weight:normal;
	text-align: left;
height:25px;
}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#578DCC url(../image/menu/blue-arrow.gif) no-repeat 110px center;}
.menu ul ul :hover > a.drop {background:#578DCC url(../image/menu/blue-arrow.gif) no-repeat 110px center;font-weight:bold;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#FBFBFB;font-size:12px;font-weight:normal;text-align: left;height:25px;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#578DCC;font-weight:bold;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden; position:absolute;height:0;top:41px;left:0; width:102px;border-top:1px solid #4C6E9E;}
/* another hack for IE5.5 */


/* position the third level flyout menu */
.menu ul ul ul{left:120px; top:-1px; width:120px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-120px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#FBFBFB; color:#015B97; height:auto; line-height:1em; padding:10px 10px 0px 10px; width:99px;border-width:0 1px 1px 1px;font-size:12px;font-weight:normal;height:25px;}
/* yet another hack for IE5.5 */


/* style the top level hover */
.menu a:hover {color:#015B97; background:#FBFBFB;font-weight:bold;text-decoration:none;} 
.menu ul ul a:hover{color:#fff; background:#578DCC;font-weight:bold;}
.menu :hover > a {color:#015B97; background:url(../image/menu/menubg2.gif) repeat-x;font-weight:bold;}
.menu ul ul :hover > a {color:#fff; background:#578DCC;font-weight:bold;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}